home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…ry 5: (Reseller Edition) / Apple Reference & Presentations Library 5.0 (Reseller Edition).iso / 5-Fonts & Software / HyperCard 1.2.2 / HC 1.2.2 Notes.TEXT next >
Text File  |  1988-11-28  |  10KB  |  236 lines

  1. HyperCard version 1.2.2 is a maintenance release with a number of bug fixes, better support for foreign languages and a few small enhancements.
  2.  
  3.  
  4.  
  5.  
  6. These notes contain information of interest to stack designers and programmers that are not covered in the general HyperCard Version 1.2.2 Release Notes stack.  The HyperCard version 1.2.2 Programmer's Notes  include the following:
  7.  
  8.  
  9.  
  10. •    Script Examples and detailed explanations of enhancements
  11.  
  12.  
  13. •    Explanations of bug fixes
  14.  
  15.  
  16.  
  17.  
  18. Briefly, HyperCard 1.2.2 includes the following:
  19.  
  20.  
  21.  
  22. •    Improved support for display and printing of Japanese, Arabic and other
  23.      non-Roman languages
  24.  
  25.  
  26. •    Improvements in handling sound (in conjunction with Sound Manager fixes
  27.      in System 6.0.2)
  28.  
  29.  
  30. •    Overall improved robustness in low memory situations
  31.  
  32.  
  33. •    Parameters returned by HyperCard's Find command have been enriched and
  34.      are more accurate
  35.  
  36.  
  37. •    A variety of bug fixes
  38.  
  39.  
  40. NOTE:  Developers who plan to license and ship HyperCard with their products outside the United States should use version z1.2.2, which contains a special resource for handling non-U.S. date, currency and other number formats.  Contact Apple Software Licensing for details on distributing HyperCard with third party products.
  41.  
  42.  
  43. Enhancements:
  44.  
  45. ------------------------------------------------------------------------------
  46.  
  47. •••      Pasting fields with the Shift key down
  48.  
  49. If the Shift key is pressed while pasting a field,  HyperCard 1.2.2 will paste the field AND put the text of the copied or cut field into it.
  50. Whether pasting a field into a card or background, text for the current card will be put into the pasted field.   Copying and pasting a field with the Shift key can be done in a HyperTalk handler as follows:
  51.  
  52. on mouseUp
  53.   select cd fld 1
  54.   doMenu "Copy Field"
  55.   go next card
  56.   type "V" with commandKey,shiftKey -- paste it with the shiftKey down
  57.   choose browse tool
  58. end mouseUp
  59.  
  60. NOTE:  The doMenu command cannot be used to shift-paste a field as it takes only one argument
  61.  
  62.  
  63.  
  64. •••      Placing a Paint graphic while drawing
  65.  
  66. HyperCard 1.2.2  allows rectangles, ovals, and regular polygons be placed (by sliding them around the screen) while they are being created.
  67.  
  68. With the rectangle, round rectangle, oval, or regular polygon tool chosen the user drags the mouse to stretch out the shape.   Without releasing the mouse button,  pressing the Command key will stop stretching, and allow sliding the graphic. Releasing the Command key resumes stretching.
  69.  
  70. This capability is only available while the user is working with the painting tools, keyboard and mouse directly; it cannot be programmed in a HyperTalk handler.
  71.  
  72.  
  73. •••   Faster navigation
  74.  
  75. Going to the previous card for a specified background is faster.   For example:
  76.  
  77. on mouseUp
  78.    go to previous card of bkgnd "Foo"
  79. end mouseUp
  80.  
  81.  
  82.  
  83.  
  84.  
  85. Support for Foreign Languages:
  86.  
  87. ------------------------------------------------------------------------------
  88.  
  89. •••      Right justified and right-to-left text
  90.  
  91. HyperCard 1.2.2 correctly frames (draws the box around) text found by HyperCard's Find commands when text is left, center or right justified, and when operating in languages which read right-to-left.
  92. Reset Paint will use right justification for Paint text if right-to-left text has been set by the Script Manager.  This restores the defaults to what would be expected on a Kanji, Arabic or Hebrew language system. 
  93.  
  94.  
  95. •••      Printing
  96.  
  97. HyperCard 1.2.2 will print Kanji characters in high quality mode on the ImageWriter II and ImageWriter LQ printers.
  98. HyperCard 1.2.2 uses the default font set by the Script Manager for printing reports.   
  99.  
  100.  
  101.  
  102.  
  103. Bug Fixes:
  104.  
  105. ------------------------------------------------------------------------------
  106.  
  107. •••      Behavior in low memory conditions
  108.  
  109. HyperCard 1.2.2 has a fix for the operating system Scrap Manager to help it when memory is running low.  When cutting or copying a HyperCard object or graphic under low memory conditions (i.e. as would be created by repeated copying and pasting on a 1 MB system),  HyperCard could sometimes receive a corrupted copy of the object when it was pasted by a user or HyperTalk handler.  This bad copy could cause the system to hang or corrupt the HyperCard stack being used.  This fix, along with several smaller ones, make HyperCard 1.2.2 much more robust when running on a 1 Megabyte Macintosh, or in a small partition under MultiFinder.
  110.  
  111.  
  112. •••   Appending Scripts
  113.  
  114. Sometimes when memory was running low the beginning of a stack script was lost when another handler attempted to append something to the end of the script.  This has been fixed.
  115.  
  116.  
  117. •••      Sound on 1 Megabyte systems, Mac Plus and SE
  118.  
  119. System 6.0.2 fixed a number of small problems with recent releases of the Macintosh Sound Manager.  HyperCard 1.2.2 has a fix for gaining and releasing the sound channel which supports desk accessories, modal dialogs or other software that use sounds.  This eliminated known sound problems including system hangs and occasional clicks and pops on the Macintosh Plus and SE, and provides better handling of synthesized and digitized sounds in general.
  120.  
  121.  
  122. •••      The "Find" command
  123.  
  124. Getting parameters for a Find command is now fully implemented, so HyperCard 1.2.2 returns more information when asked for “the params”.  These improvements allow stack designers to intercept a Find command, examine it in detail, then modify, terminate, execute or override it inside a handler.
  125. HyperCard 1.2.2 returns the string to be found with quotes (which can be important for conditional HyperTalk statements to multi-word searches), and also returns a complete field expression, instead of just “<field>”. 
  126. For example, if the command:
  127. find whole "My Name" in bkgnd fld "Foo"
  128. were intercepted by the handler:
  129.  
  130. on Find
  131.    send the params to HyperCard
  132.    if the result is empty then exit find
  133.    lock screen   
  134.    push card
  135.    go to stack "server:Address"
  136.    send the params to HyperCard  -- search in this stack too
  137.    if the result is empty then exit find
  138.    pop card  -- return to original stack
  139. end Find
  140.  
  141. inquiring about “the params” would return the following literal results:
  142.  
  143. find whole My Name in <field> -- for version 1.2.1 and earlier
  144. find whole "My Name" in bkgnd field 2 -- for version 1.2.2
  145.  
  146. NOTE:  If the Find command contains a field name (e.g. bkgnd fld “Foo”), HyperCard converts the name into the field number (e.g. bkgnd field 2).
  147.   
  148. A simpler command like:
  149.  
  150. find "My Name"
  151.  
  152. would return:
  153.  
  154. find 0 My Name -- for version 1.2.1 and earlier  
  155. find normal "My Name" -- for version 1.2.2
  156.  
  157. NOTE:  In simple Find commands, version 1.2.2 returns “normal” in the second item (instead of “0”), indicating the Find command was not followed by modifiers like “whole” or “string”.
  158.  
  159.  
  160. •••   Closing open fields at the start of a Find command
  161.  
  162. HyperCard now closes the currently open field (one where there is a flashing cursor) when a search is initiated via the Find command.  This should eliminate situations where Find would return an invalid result.
  163.  
  164.  
  165.  
  166. •••      Sending the Choose message
  167.  
  168. In earlier versions, when the user clicked on a tool in the tool windoid, HyperCard did not send the Choose message.  Now it does.  This is useful when a designer wants to figure out which tool the user has chosen from the palette.  For example:
  169.  
  170. on choose what,whichTool
  171.    if what is "tool" and whichTool is "7" then beep
  172.      -- beep when the brush tool is chosen
  173.    pass choose -- do it
  174. end choose
  175.  
  176. NOTE:  The Choose message passes the word "tool" and a number, not a tool name.
  177.  
  178.  
  179. •••      Scrolling fields
  180.  
  181. The scrollbar is now updated after cutting or deleting text from a scrolling field, so the field can now be scrolled back to the top with the mouse after cutting or deleting text from the bottom . 
  182. Text Arrows now update the scrollbar and scroll setting properly.  Previous versions did not update the scrollbar when text arrows were used to scroll up and down the field.
  183.  
  184.  
  185. •••      Painting tools with hidden pictures
  186.  
  187. If the picture is hidden you can no longer get "marching ants” by double-clicking the selection tool.
  188. If the picture is hidden you can no longer set an insertion point by choosing the text tool and clicking the mouse.
  189.  
  190.  
  191. •••      Typing in locked stacks
  192.  
  193. A bug in HyperCard 1.2.1  allowed users to type carriage returns into fields in a locked stack, even though the userModify property was set to false.  This has been fixed.
  194.  
  195.  
  196. •••      Working with custom FOND resources
  197.  
  198. A bug allowed a custom FOND attached to a stack to be purged, but a Font Manager global still referred to it.  This could corrupt HyperCard's heap; it has been fixed.
  199.  
  200.  
  201. •••      Font substitution with the ImageWriter LQ
  202.  
  203. If the 3x fonts for the ImageWriter LQ are available, HyperCard will now use them.
  204.  
  205.  
  206.  
  207. •••      Going to other stacks while deleting a card
  208.  
  209. Earlier versions of HyperCard would result in an Unexpected Error #1250 or #1260 if a user (via a script) left the stack in a delete or openCard handler.  This has been fixed.
  210.  
  211.  
  212. •••      Copying the selection
  213.  
  214. Earlier versions of HyperCard accidentally copied the entire text of a source container when a handler requested that the selection (highlighted text) be put after the contents of a destination container.  Version 1.2.2 fixes this.
  215.  
  216.  
  217. •••      the diskSpace
  218.  
  219. The diskSpace property now returns the correct available diskspace when it's more than 32 megabytes. 
  220.  
  221.  
  222. •••      Visual effects on "E-Machines" type large monitors
  223.  
  224. Visual effects now work with monitors which change low memory screen globals.  
  225.  
  226.  
  227. •••      Flush mouseUp event before sending the mouseUp message
  228.  
  229. When a button was clicked on and the message was sent prior to the event being removed from the queue, XCMDs were getting confused by the extra event.  This is fixed.  
  230.  
  231.  
  232. •••      Suspend/Resume
  233.  
  234. In some sublaunch situations where the user had to find the application with Standard File, a bug resulted in weird looking screens on return to HyperCard.  This has been fixed.
  235.  
  236.